home *** CD-ROM | disk | FTP | other *** search
- /* XOTIME.C Time retrieval routines for XOBBS. Jim Durham, W2XO 10-24-88 */
- /* Version 1.0 */
- /* Code released to the amateur radio community */
-
- #include "xobbs.h"
-
- char *gettim()
- {
-
- long long_time;
- static char timstrng[24];
-
- time(&long_time);
- newtime=gmtime(&long_time);
-
- strncpy(timstrng,asctime(newtime),20);
- timstrng[19]=0;
- strcat(timstrng,"Z");
- return(timstrng);
- }
-